Fix off-by-one allocation errors. (#143337, Billy Biggs)
authorMatthias Clasen <maclas@gmx.de>
Fri, 28 May 2004 18:21:58 +0000 (18:21 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 28 May 2004 18:21:58 +0000 (18:21 +0000)
Fri May 28 14:20:17 2004  Matthias Clasen  <maclas@gmx.de>

* gdk/x11/gdkevents-x11.c: Fix off-by-one allocation
errors. (#143337, Billy Biggs)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gdk/x11/gdkevents-x11.c

index 8dc912f5322ad119b222cdc7f32c8c4ee652eb39..9f7bee17a516998121dc781633d63a71c536c143 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri May 28 14:20:17 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gdk/x11/gdkevents-x11.c: Fix off-by-one allocation 
+       errors. (#143337, Billy Biggs) 
+
 Thu May 27 16:36:22 2004  Owen Taylor  <otaylor@redhat.com>
 
        * gdk/x11/gdkcolor-x11.c (gdk_colormap_alloc_colors): Set
index 8dc912f5322ad119b222cdc7f32c8c4ee652eb39..9f7bee17a516998121dc781633d63a71c536c143 100644 (file)
@@ -1,3 +1,8 @@
+Fri May 28 14:20:17 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gdk/x11/gdkevents-x11.c: Fix off-by-one allocation 
+       errors. (#143337, Billy Biggs) 
+
 Thu May 27 16:36:22 2004  Owen Taylor  <otaylor@redhat.com>
 
        * gdk/x11/gdkcolor-x11.c (gdk_colormap_alloc_colors): Set
index 8dc912f5322ad119b222cdc7f32c8c4ee652eb39..9f7bee17a516998121dc781633d63a71c536c143 100644 (file)
@@ -1,3 +1,8 @@
+Fri May 28 14:20:17 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gdk/x11/gdkevents-x11.c: Fix off-by-one allocation 
+       errors. (#143337, Billy Biggs) 
+
 Thu May 27 16:36:22 2004  Owen Taylor  <otaylor@redhat.com>
 
        * gdk/x11/gdkcolor-x11.c (gdk_colormap_alloc_colors): Set
index 8dc912f5322ad119b222cdc7f32c8c4ee652eb39..9f7bee17a516998121dc781633d63a71c536c143 100644 (file)
@@ -1,3 +1,8 @@
+Fri May 28 14:20:17 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gdk/x11/gdkevents-x11.c: Fix off-by-one allocation 
+       errors. (#143337, Billy Biggs) 
+
 Thu May 27 16:36:22 2004  Owen Taylor  <otaylor@redhat.com>
 
        * gdk/x11/gdkcolor-x11.c (gdk_colormap_alloc_colors): Set
index 56a29fd8f470d42f768b3cf9528239fa3d04cc5b..b4a0ba202a311a65ed48e01bc9bfff7a03a84cb6 100644 (file)
@@ -787,14 +787,14 @@ get_real_window (GdkDisplay *display,
 }
 
 #ifdef G_ENABLE_DEBUG
-static const char notify_modes[][18] = {
+static const char notify_modes[][19] = {
   "NotifyNormal",
   "NotifyGrab",
   "NotifyUngrab",
   "NotifyWhileGrabbed"
 };
 
-static const char notify_details[][22] = {
+static const char notify_details[][23] = {
   "NotifyAncestor",
   "NotifyVirtual",
   "NotifyInferior",